home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Puzzle / PuzzlePuzzle.swf / scripts / DefineButton2_280 / BUTTONCONDACTION on(keyPress Left).as < prev    next >
Encoding:
Text File  |  2005-08-05  |  161 b   |  10 lines

  1. on(keyPress "<Left>"){
  2.    if(0 < manx)
  3.    {
  4.       sound.gotoandplay("move");
  5.       man.gotoandplay("left");
  6.       manx -= 1;
  7.       man._x -= 35;
  8.    }
  9. }
  10.